home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / OWLPORTH.PAK / EDITMENU.RC < prev    next >
Text File  |  1997-05-06  |  640b  |  22 lines

  1. // ObjectWindows - (C) Copyright 1992 by Borland International
  2.  
  3. EDITCOMMANDS  MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  4. BEGIN
  5.   POPUP "&Edit"
  6.   BEGIN
  7.     MenuItem  "&Undo\aAlt+BkSp", CM_EDITUNDO
  8.     MenuItem  SEPARATOR
  9.     MenuItem  "&Cut\aShift+Del", CM_EDITCUT
  10.     MenuItem  "C&opy\aCtrl+Ins", CM_EDITCOPY
  11.     MenuItem  "&Paste\aShift+Ins", CM_EDITPASTE
  12.     MenuItem  "&Delete\aDel", CM_EDITDELETE
  13.     MenuItem  "C&lear All\aCtrl+Del", CM_EDITCLEAR
  14.   END
  15.   POPUP "&Search"
  16.   BEGIN
  17.     MenuItem  "&Find...", CM_EDITFIND
  18.     MenuItem  "&Replace...", CM_EDITREPLACE
  19.     MenuItem  "&Next\aF3", CM_EDITFINDNEXT
  20.   END
  21. END
  22.